From 9560649c50b6fae23278faae748369403dacc654 Mon Sep 17 00:00:00 2001 From: Konrad Rzeszutek Wilk Date: Tue, 13 Sep 2016 12:11:44 -0400 Subject: [PATCH] livepatch/tests: Make .livepatch.depends be read-only As currently during the injection of the build-id it ends up being marked as AW. We want it to be read-only. Reviewed-by: Ross Lagerwall Acked-by: Jan Beulich Signed-off-by: Konrad Rzeszutek Wilk --- xen/arch/x86/test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/test/Makefile b/xen/arch/x86/test/Makefile index 23dff1d8fa..48ff84300f 100644 --- a/xen/arch/x86/test/Makefile +++ b/xen/arch/x86/test/Makefile @@ -55,7 +55,7 @@ $(LIVEPATCH): xen_hello_world_func.o xen_hello_world.o note.o note.o: $(OBJCOPY) -O binary --only-section=.note.gnu.build-id $(BASEDIR)/xen-syms $@.bin $(OBJCOPY) -I binary -O elf64-x86-64 -B i386:x86-64 \ - --rename-section=.data=.livepatch.depends -S $@.bin $@ + --rename-section=.data=.livepatch.depends,alloc,load,readonly,data,contents -S $@.bin $@ rm -f $@.bin # @@ -66,7 +66,7 @@ note.o: hello_world_note.o: $(LIVEPATCH) $(OBJCOPY) -O binary --only-section=.note.gnu.build-id $(LIVEPATCH) $@.bin $(OBJCOPY) -I binary -O elf64-x86-64 -B i386:x86-64 \ - --rename-section=.data=.livepatch.depends -S $@.bin $@ + --rename-section=.data=.livepatch.depends,alloc,load,readonly,data,contents -S $@.bin $@ rm -f $@.bin xen_bye_world.o: config.h -- 2.30.2